home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr50 / pbwiz17.zip / PBWIZ.NEW < prev    next >
Text File  |  1993-06-21  |  7KB  |  194 lines

  1. PBWiz 1.7, 06/21/93:
  2.  
  3.    Revised the BASIC files and documentation to take advantage
  4.    of the seamless external syntax (implicit CALLs). The old
  5.    CALL format is also still supported, of course.
  6.  
  7.    The Archive routines now support ARJ self-extracting .EXEs.
  8.  
  9.    Added joystick support, telecomm handling, and SoundBlaster
  10.    support (via the SBSIM driver). Added new demos MINITERM.BAS
  11.    and PLAYVOC.BAS for the latter two units.
  12.  
  13.  
  14.  
  15. PBWiz 1.6, 02/25/93:
  16.  
  17.    This version of PBWiz requires PowerBasic 3.0. If you have an
  18.    earlier version of PowerBasic, either upgrade it or use PBWiz
  19.    1.5. This release of PBWiz makes extensive use of the new
  20.    PowerBasic features, including libraries (.PBL files)-- no
  21.    more .OBJ and .PBU files to have to remember!
  22.  
  23.    Added several utilities to help manage libraries. These are
  24.    shells which require PBLIB.EXE to do the real work. Their
  25.    function is to make PBLIB more powerful. Type the name of the
  26.    utility with no parameters for a help screen.
  27.       LIBADD       add modules to a library
  28.       LIBUPD       update modules in a library
  29.       LIBLIST      list the contents of a library
  30.  
  31.    The .EXE form of the demo programs is no longer included, to
  32.    help keep the library a reasonable size for downloading. The
  33.    CREATE.BAT program will create the demos for you.
  34.  
  35.    Added a demo which shows how to use the XMS routines for
  36.    array storage. XMSDEMO uses an array of long integers, but
  37.    the technique is applicable to other data types as well.
  38.  
  39.    Fixed a bug in the GN5GetPel routine. Altered PopWindow to
  40.    avoid a bug in some versions of PowerBasic:
  41.       ELSEIF Frame AND 1 THEN
  42.    was being evaluated incorrectly. Adding parens fixed it:
  43.       ELSEIF (Frame AND 1) THEN
  44.  
  45.    The graphics routines have been greatly improved:
  46.       - Get and set the palette in 256-color modes
  47.       - VESA support for wide SuperVGA compatibility
  48.       - Read and write 256-color pictures in .BMP format
  49.       - Improved VGADEMO.BAS shows use of .BMP viewer
  50.       - Added VESAINFO.BAS to show info about SVGA modes
  51.       - Sped up the G#Write and G#WriteLn routines
  52.  
  53.    The math extension unit has been expanded with additional
  54.    trigonometric functions.
  55.  
  56.    Added a short description file, DESC.SDI, for the BBSes that
  57.    support it. This complements the longer FILE_ID.DIZ.
  58.  
  59.    The order form has been renamed from REGISTER.TXT to
  60.    ORDER.FRM, since that seems to be a more common convention.
  61.  
  62.    The archive scanner now supports the new PKZIP 2.0 format
  63.    "deflated", and can scan the self-extracting .EXE files
  64.    created by ZIP2EXE.
  65.  
  66.  
  67.  
  68. PBWiz 1.5, 10/05/92:
  69.  
  70.    Added support for 256-color SuperVGA modes on any adapter
  71.    with the Tseng 4000 chipset (most SVGAs). You can use any
  72.    mode supported by your adapter and monitor. The unit has been
  73.    tested with modes from 640x350 to 1024x768 resolution.
  74.  
  75.  
  76.  
  77. PBWiz 1.4, 09/02/92:
  78.  
  79.    PBWiz can now be registered online by CompuServe members (use
  80.    GO SWREG). PBWiz is registration I.D. #209.
  81.  
  82.    Added the DIRMGR unit, which lets you scan disk directories.
  83.    You can specify search attributes and filenames with full
  84.    path and wildcard capabilities. For matched files, you can
  85.    obtain the file name, attribute, time, date, and size.
  86.    Directory recursion is also supported.
  87.  
  88.    The archive scanner can now scan self-extracting .EXE files
  89.    created by LHARC in addition to the usual archive formats.
  90.  
  91.    The expression evaluator now supports the constant PI and a
  92.    variety of functions:
  93.      ABS, ACOS, ASIN, ATAN, COS, FRAC, INT, LOG, SIN, SQR, TAN
  94.  
  95.    A command-line calculator has been added to show off the
  96.    expression evaluator. See CALC.BAS and CALC.EXE.
  97.  
  98.    The Processor% function can now tell 80486s from 80386s.
  99.  
  100.    The VARCDEMO program has been renamed to ARCVIEW.
  101.  
  102.  
  103.  
  104. PBWiz 1.3, 06/30/92:
  105.  
  106.    Added a unit for ANSI emulation. This unit allows you to use
  107.    ANSI codes without requiring ANSI.SYS or a similar display
  108.    driver.
  109.  
  110.    Functions which return the number of serial and parallel
  111.    ports installed have been added to the equipment unit.
  112.  
  113.    A special fast print routine has been added to the video
  114.    unit. It skips spaces rather than displaying them, making it
  115.    easy to overlay existing text.
  116.  
  117.    Ceiling and floor functions have been added to the math
  118.    extensions unit.
  119.  
  120.    If you're using the excellent 4DOS command shell, try the new
  121.    ADD4DOS.BAT file. It will add directory descriptions to the
  122.    PBWiz files-- no more guessing about file names!
  123.  
  124.  
  125.  
  126. PBWiz 1.2, 03/01/92:
  127.  
  128.    Inexplicably, I managed to leave many of the DECLAREs for the
  129.    MOUSE unit out of the previous releases. There was also an
  130.    error in one of the DECLAREs for the equipment unit. These
  131.    have been fixed.
  132.  
  133.    I've added a demo to show the use of the equipment and video
  134.    unit. Type "DEMO" to take a look. I've also added a demo for
  135.    the archive viewing routines. Type "VARCDEMO filename" for a
  136.    plain list, or add the "/V" option for a detailed view of the
  137.    archive.
  138.  
  139.    The various $INCLUDE files have been gathered together into a
  140.    single file, PBWIZ.INC, for convenience. I've also added a
  141.    quick reference of the routines, PBWIZ.REF.
  142.  
  143.    A display unit has been added. This includes scrolling in any
  144.    direction, DOS/ANSI output (print, cls, color, locate),
  145.    save/restore any part of a screen, fast and flexible string
  146.    displays, recoloring of selected areas, and pop-up windows.
  147.  
  148.    The EXTMATH.PBU unit has been split in two: EXTMATHA.OBJ &
  149.    EXTMATHB.PBU. This allowed me to add a number of
  150.    assembly-language routines to the math unit, including bit
  151.    shifts and rotatations.
  152.  
  153.    The EQUIPMEN.OBJ unit has been extended to return the BIOS
  154.    date and PC type information. It can now also tell you
  155.    whether DR DOS is being used instead of MS-DOS.
  156.  
  157.    There have been some changes to WHERE.BBS. Of particular note
  158.    to PowerBASIC users is that The Bard's Lair (Dave Navarro's
  159.    board) is gone. Dave has moved to The Consultant BBS, as have
  160.    I. See the WHERE.BBS file for more info.
  161.  
  162.  
  163.  
  164. PBWIZ 1.1, 01/10/92:
  165.  
  166.    The documentation has been reformatted. Ample room has been
  167.    left for margins in case you'd like to create a bound manual.
  168.  
  169.    A brief demo program has been added to demonstrate the use of
  170.    PBWiz. It shows the 256-color graphics modes in action. Type
  171.    VGADEMO to try it out.
  172.  
  173.    Two sets of memory routines have been added, giving you
  174.    access to EMS and XMS memory. The older EMS 3.x and EEMS
  175.    standards are supported as well as the current EMS 4.0.
  176.  
  177.    Comprehensive keyboard control has been added. Get the states
  178.    of any alt, control, or shift key; get or set CapsLock,
  179.    Insert, NumLock, ScrollLock; access 101-key "enhanced"
  180.    keyboards; put a string into the keyboard buffer; speed up
  181.    the keyboard; take control of the PrintScreen key; see what a
  182.    key is without actually getting it; more.
  183.  
  184.  
  185.  
  186. PBWIZ 1.0, 12/03/91:
  187.  
  188.    This is the initial release of The PowerBASIC Wizard's
  189.    Library, featuring extended math support, a numeric
  190.    expression evaluator, mouse support, string handling,
  191.    equipment information routines, time/date manipulation,
  192.    viewing archives (ARC, ARJ, LZH, PAK, ZIP, ZOO), and VGA
  193.    graphics (320x200 and 360x480 in 256 colors).
  194.